TestModel   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 6
dl 0
loc 7
rs 10
c 0
b 0
f 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A applyEvent 0 2 1
1
import { AggregateRoot } from '@nestjs/cqrs';
2
import { TryAggregateRootEvent } from '../events/test.events';
3
4
export class TestModel extends AggregateRoot {
5
    constructor() {
6
        super();
7
    }
8
    applyEvent(message: string) {
9
        this.apply(new TryAggregateRootEvent(message));
10
    }
11
}
12